home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Magazin/MacEasy 30
/
Mac Magazin and MacEasy Magazine CD - Issue 30.iso
/
utilities
/
Mac OS X
/
Flurry
/
Flurry source
/
Source Folder
/
Particle.h
< prev
next >
Wrap
C/C++ Source or Header
|
2001-04-17
|
769b
|
39 lines
// Particle.h: interface for the Particle class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PARTICLE_H__785B5CC6_3B21_11D4_8DF7_A585A95F273C__INCLUDED_)
#define AFX_PARTICLE_H__785B5CC6_3B21_11D4_8DF7_A585A95F273C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
extern int thisFrame;
class Particle
{
public:
void Init(void);
void Update();
float charge;
float x;
float y;
float z;
float oldx;
float oldy;
float oldz;
float deltax;
float deltay;
float deltaz;
float r;
float g;
float b;
int animFrame;
Particle();
virtual ~Particle();
void Draw();
};
#endif // !defined(AFX_PARTICLE_H__785B5CC6_3B21_11D4_8DF7_A585A95F273C__INCLUDED_)